Welcome![Sign In][Sign Up]
Location:
Search - database CSharp

Search list

[Education soft systemStudent database

Description: C#下制作的学生数据库,经典代码。-C# produced by the students under the database, classic code.
Platform: | Size: 21504 | Author: 白云生 | Hits:

[CSharpRead and Write Images to a SQL Server Database wit

Description: Read and Write Images to a SQL Server Database with C#
Platform: | Size: 79872 | Author: 啊建 | Hits:

[SMSCsharp开发的CMPP协议SP端平台

Description: C#开发的CMPP协议SP端平台 1.Sample为示例解决方案 2.GateWaySample是示例项目 3.CMSMGWCenter为短信应用接口,为调用CMSMIF.DLL的示例代码,同时其被GateSample调用. 4.GateWaySample\bin\Debug\GateWaySample.exe为示例可执行文件. 5.DataBase\SMSCenter.DB为示例数据库.-C# development of the SP-CMPP 1.Sample platform solutions for example 2.GateWaySample example is the project to 3.CMSMGWCenter messaging application interface for the call CMSMIF.DLL sample code, while its GateSample was called. 4.GateWaySample \ bin \ Debug \ GateWaySample . for example exe executable files. 5.DataBase \ SMSCenter.DB for the sample database.
Platform: | Size: 151552 | Author: | Hits:

[CSharpCsharp报表打印

Description: C#报表打印,有四种打印方法,支持access数据库等。 (内附源代码及整个工程文件)-C# statements Print, Print four ways to support access database. (With source code and project files)
Platform: | Size: 285696 | Author: | Hits:

[CSharp读写image到database

Description: c#制作的对sql数据库进行,图象文件的写入,的一个例子,-produced by the right sql database, image documents write, in one example,
Platform: | Size: 11264 | Author: gu | Hits:

[ADO-ODBCCsharp数据库编程从入门到精通学习资料

Description: c# 数据库编程从入门到精通,非常好的一个学习资料,如过你从事数据库房卖难的工作,非常建议您学习一下。-Database Programming from entry to the proficient, a very good learning materials, such as database into your room engaged in the work of slower sales, very recommend that you learn from this.
Platform: | Size: 494592 | Author: 丁一 | Hits:

[CSharpCSharp编写的DOTNET应用论坛0904版(Only+Sql)

Description: 一个C#论坛,包含SQL Server200数据库 -a forum for C#, including SQL database Server200
Platform: | Size: 540672 | Author: 傻子 | Hits:

[CSharpcsharp增删改查access数据库

Description: Csharp语言编写的关于access数据库的各类操作-Csharp language on access to the database of various operations
Platform: | Size: 203776 | Author: 云中云 | Hits:

[Other systems进销存管理系统(Csharp)

Description: 进销存管理系统 为C#源码 采用SQL Server数据库 功能可以 可以应付一般小公司的系统-inventory management system for the C# source code using SQL Server database functions can be able to handle general the small company's systems
Platform: | Size: 544768 | Author: asd | Hits:

[Other systems生产管理系统(csharp)

Description: 生产管理系统采用C#和SQL Server数据库 程序实用 结构清晰-production management system using C# and SQL Server database structure clear practical procedures
Platform: | Size: 654336 | Author: asd | Hits:

[Other systems财务管理系统(csharp)

Description: 财务管理系统采用C#语言和SQL Server数据库 适合于一般小公司的使用-financial management system using C# language and SQL Server database suitable for the general public's use
Platform: | Size: 612352 | Author: asd | Hits:

[Other systems图书馆管理系统(Csharp)

Description: 图书馆管理系统采用C#和SQL Server 数据库编写 适合小型图书馆的管理-library management system using C# and SQL Server database to prepare for a mini-library management
Platform: | Size: 637952 | Author: asd | Hits:

[Hotel software system酒店管理系统(Csharp)

Description: 酒店管理系统采用C#和SQL Server 数据库实现 适合一般小酒店的管理-hotel management system uses C# and SQL Server database suitable for general hotel management
Platform: | Size: 617472 | Author: asd | Hits:

[hospital software system医院管理系统(Csharp)

Description: 医院管理系统采用C#和SQL Server 数据库实现 可用于小诊所的管理-hospital management system uses C# and SQL Server database can be used for the management of small clinics
Platform: | Size: 591872 | Author: asd | Hits:

[Other resourceDBSCAN-csharp

Description: 程序说明: Form1.cs是应用聚类算法DBSCAN (Density-Based Spatical Clustering of Application with Noise)的示例,可以通过两个参数EPS和MinPts调节聚类。 DBSCAN.cs是实现文件,聚类算法的进一步信息请参考“数据挖掘”或者相关书籍 聚类示例数据来自于sxdb.mdb,一个Access数据库。 已知问题及进一步改进建议: 问题:dbscan.cs行64,SortedList不支持重复键,因此若两个数据点距离相同则无法加入集合 解决:采用人为减小一个微小量,使数据点距离不同且不影响聚类结果 上一解决方案的问题:减小double.Epsilon微小量无助于使SortedList认为两点距离以及不同 解决:采用一个指数增长的微小量,连续重试直至SortedList认为距离已经不同 进一步改进建议:可能通过double的强制转型为内存中的byte类型(假设double型转为8个byte) 然后最后一个byte减去0x01可比较漂亮的解决问题,但是……呵呵,C#中我不会这个操作 也可以自己实现一个SortedList,支持重复键,当然,这,好像是微软应该做的工作了 ^_^ Eric Guo <http://www.cnblogs.com/ericguo/> -procedures : Form1.cs clustering algorithm is applied DBSCAN (Density-Based Spati cal Clustering of Application with Noise) example, two parameters can EPS and MinPts regulation clustering. DBSCAN.cs is, the clustering algorithm further information please refer to the "data mining" or books related data clustering example from sxdb.m db, an Access database. Known issues and recommendations for further improvement : : 64 dbscan.cs OK, SortedList not support duplicate keys, and therefore if two data points from the same pool can not be solved by adding : By applying an artificially reduce a small amount of data from different points without clustering results on the impact of a solution of the problem : double.Epsilon small decrease in the amount of helplessness to make that 2:00 S
Platform: | Size: 26624 | Author: Huang Yi | Hits:

[Software EngineeringCSharp.Programmers.Cookbook

Description: This book offers 226 code recipes applicable to a variety of difficulties that may arise in the process of application development. Topics covered include XML processing, Windows forms, database access, networking, runtime security, cryptography and more. -This book offers 226 recipes code applicab le to a variety of difficulties that may arise in the process of application development. Topic 's covered include XML processing, Windows forms, database access, networking, runtime security, cryptography and more.
Platform: | Size: 2539520 | Author: 黄瑞宁 | Hits:

[CSharpdatabase

Description: 对access数据库的操作,非常详细,对c#入门者有很大帮助.-To access the database operation, a very detailed on the c# Beginners are very helpful.
Platform: | Size: 75776 | Author: lihengkai | Hits:

[CSharpmd5

Description: 一套和C#使用的md5相同算法的md5.asp 有测试程序,用来让c#和asp判断相同的数据库中的md5密码-And a C# Use the md5 algorithm md5.asp have the same testing procedures used to c# And asp to judge the same database md5 password
Platform: | Size: 43008 | Author: datou | Hits:

[Software Engineeringcsharp

Description: 根据listbox,完成对数据库操作,提供单独数据库操作方法-According to listbox, to complete the database operations and provide a separate database operation
Platform: | Size: 3072 | Author: liujian | Hits:

[CSharpCSharp+SQL

Description: 本代码为C#数据库源代码和可执行程序。 读者需要安装Visual Studio .NET 2003及以上版本和安装Microsoft SQL Server 2000才能正常运行行示例实例程序。-The code for the C# Database source code and executable programs. Readers need to install Visual Studio. NET 2003 and above versions and install the Microsoft SQL Server 2000 to work properly line sample instance of the procedure.
Platform: | Size: 453632 | Author: 王和 | Hits:
« 12 3 4 5 6 7 8 9 10 ... 47 »

CodeBus www.codebus.net